+Sat Dec 13 00:39:24 2003 Matthias Clasen <maclas@gmx.de>
+
+ * gtk/gtkviewport.c (viewport_set_hadjustment_values): Implement
+ "gravity" for RTL mode in a better way: Keep the distance from
+ the upper end of the page to the upper bound constant. This also
+ fixes problems with the initial position of the viewport in RTL
+ mode. (#129063)
+
Fri Dec 12 21:00:12 2003 Kristian Rietveld <kris@gtk.org>
Combo box flipping support.
+Sat Dec 13 00:39:24 2003 Matthias Clasen <maclas@gmx.de>
+
+ * gtk/gtkviewport.c (viewport_set_hadjustment_values): Implement
+ "gravity" for RTL mode in a better way: Keep the distance from
+ the upper end of the page to the upper bound constant. This also
+ fixes problems with the initial position of the viewport in RTL
+ mode. (#129063)
+
Fri Dec 12 21:00:12 2003 Kristian Rietveld <kris@gtk.org>
Combo box flipping support.
+Sat Dec 13 00:39:24 2003 Matthias Clasen <maclas@gmx.de>
+
+ * gtk/gtkviewport.c (viewport_set_hadjustment_values): Implement
+ "gravity" for RTL mode in a better way: Keep the distance from
+ the upper end of the page to the upper bound constant. This also
+ fixes problems with the initial position of the viewport in RTL
+ mode. (#129063)
+
Fri Dec 12 21:00:12 2003 Kristian Rietveld <kris@gtk.org>
Combo box flipping support.
+Sat Dec 13 00:39:24 2003 Matthias Clasen <maclas@gmx.de>
+
+ * gtk/gtkviewport.c (viewport_set_hadjustment_values): Implement
+ "gravity" for RTL mode in a better way: Keep the distance from
+ the upper end of the page to the upper bound constant. This also
+ fixes problems with the initial position of the viewport in RTL
+ mode. (#129063)
+
Fri Dec 12 21:00:12 2003 Kristian Rietveld <kris@gtk.org>
Combo box flipping support.
+Sat Dec 13 00:39:24 2003 Matthias Clasen <maclas@gmx.de>
+
+ * gtk/gtkviewport.c (viewport_set_hadjustment_values): Implement
+ "gravity" for RTL mode in a better way: Keep the distance from
+ the upper end of the page to the upper bound constant. This also
+ fixes problems with the initial position of the viewport in RTL
+ mode. (#129063)
+
Fri Dec 12 21:00:12 2003 Kristian Rietveld <kris@gtk.org>
Combo box flipping support.
GtkAllocation view_allocation;
GtkAdjustment *hadjustment = gtk_viewport_get_hadjustment (viewport);
gdouble old_page_size;
+ gdouble old_upper;
+ gdouble old_value;
viewport_get_view_allocation (viewport, &view_allocation);
old_page_size = hadjustment->page_size;
+ old_upper = hadjustment->upper;
+ old_value = hadjustment->value;
hadjustment->page_size = view_allocation.width;
hadjustment->step_increment = view_allocation.width * 0.1;
hadjustment->page_increment = view_allocation.width * 0.9;
if (gtk_widget_get_direction (GTK_WIDGET (viewport)) == GTK_TEXT_DIR_RTL)
{
- gdouble old_value = hadjustment->value;
- hadjustment->value = hadjustment->value + old_page_size - hadjustment->page_size;
+ gdouble dist = old_upper - (old_value + old_page_size);
+ hadjustment->value = hadjustment->upper - dist - hadjustment->page_size;
viewport_reclamp_adjustment (hadjustment, value_changed);
*value_changed = (old_value != hadjustment->value);
}